home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000319_shifeux@hotmail.com_Thu Aug 16 17:28:32 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  56 lines

  1. Article: 12685 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!newsfeed.mathworks.com!news.maxwell.syr.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: shifeux@hotmail.com (Shifeux)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Kermit Scripts and Shell Scripts
  6. Date: 16 Aug 2001 14:15:03 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 37
  9. Message-ID: <336f652d.0108161315.292edd68@posting.google.com>
  10. References: <336f652d.0108130841.43ce0ed5@posting.google.com> <336f652d.0108141029.39b5169f@posting.google.com> <9lbras$cfb$1@newsmaster.cc.columbia.edu> <336f652d.0108141245.885b7f7@posting.google.com> <9lc314$hn0$1@newsmaster.cc.columbia.edu>
  11. NNTP-Posting-Host: 146.145.217.201
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 997996503 25724 127.0.0.1 (16 Aug 2001 21:15:03 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 16 Aug 2001 21:15:03 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12685
  18.  
  19. Frank - You are our new hero. I think we are going to name a cubicle
  20. after you.
  21.  
  22. The problem was in the environment variable $SHELL afterall.  KSH is
  23. in /bin/ksh.  The $SHELL variable was set to just "ksh" and kermit
  24. couldn't find the shell to run the commands. By setting $SHELL to
  25. /bin/ksh rather than just ksh (assuming that /bin was in $PATH) kermit
  26. was able to find the shell and fork properly. The shell variable was
  27. not properly defined by the admin. Everything works as it should now.
  28.  
  29. Again, thank you very much for the time and effort. It is greatly
  30. appreciated.
  31.  
  32. Mike
  33.  
  34. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote in message news:<9lc314$hn0$1@newsmaster.cc.columbia.edu>...
  35. > In article <336f652d.0108141245.885b7f7@posting.google.com>,
  36. > Shifeux <shifeux@hotmail.com> wrote:
  37. > : I appreciate your help. The other scripts are all fine and each work
  38. > : individually. They all have execute rights and are all spelled
  39. > : correctly. I was able to reproduce the problem with a little test
  40. > : kermit script which includes an echo followed by a run followed by
  41. > : echos. It seems that when I include the run command it halts the
  42. > : script and does not execute the run command or any commands after.
  43. > :
  44. > Then let's take this offline.  Make a file that looks like this:
  45. >   log debug
  46. >   run /kermit_scripts/xxxxxxx.pl
  47. > If that is not the actual RUN command you are using, of course please
  48. > substitute the one you are using.
  49. > Then tell Kermit to "take" this file, then send the resulting debug.log
  50. > file by email to kermit-support@columbia.edu.
  51. > - Frank
  52.